home *** CD-ROM | disk | FTP | other *** search
- --copy this into the other dir files
- --on CursorRoll WhoAmi, Myrects
- -- if the frontwindow = WhoAmi then
- -- repeat with c= 1 to count (Myrects)
- -- if inside (point(the mouseH, The MouseV), getat(Myrects,c)) then
- -- cursor [member "hand", member "handmask"]
- -- else
- -- cursor 0
- -- end if
- -- end repeat
- -- end if
- --end
-
- -- --The Infamous 'Click States'
- -- -- The GRFX change while you're in the area, reset when you'r not
- -- if the framelabel = "Main" then
- -- set MyTestrects = [rect(62, 248, 282, 282)]
- -- set Myclickedrects = [rect(62, 248, 282, 282)]
- -- set MyClickGRFX = ["brands_list_click"]
- -- repeat with d = 1 to count (MyTestrects)
- -- if inside(point(the mouseH,the mouseV),getat(MyTestrects,d)) then
- -- puppetsprite 50, true
- -- set the membernum of sprite 50 = member (getat(MyClickGRFX,d))
- -- set the rect of sprite 50 = getat(Myclickedrects,d)
- -- updatestage
- -- end if
- -- end repeat
- -- end if
- --
- --on mouseup:
- --allfalse
- --updatestage
- --
-
- on gimme
- set MyList = []
- set MyProp = [:]
- repeat with a = 1 to 1000
- go to frame a
- if the framelabel <> 0 then
- add(MyList, the framelabel)
- addprop(MyProp, the framelabel, the framelabel)
- end if
- end repeat
- put MyList
- put count (Mylist)
- put MyProp
- end
-
- on gimmeInUse
- set MyList = []
- set MyProp = [:]
- repeat with a = 1 to 1000
- go to frame a
- if the framelabel <> 0 then
- if the membernum of sprite 22 <>0 then
- add(MyList, the framelabel)
- addprop(MyProp, the framelabel, the framelabel)
- end if
- end if
- end repeat
- put MyList
- --put count (Mylist)
- --put MyProp
- end
-
- on layframelabels start
- set mylist = ["Main", "Atlantic", "Avondale", "Azteca", "Bibb", "Burling", "Cdi", "Coltejer", "Cone", "Courtaul", "DanRiver", "Grandtex", "Greenwood", "Gtm", "Hellenic", "Hof", "Italden", "Jeantex", "Kurabo", "Legler", "MonteBel", "NTWHeck", "Sparten", "Swift", "Tavex", "Tejidos", "Tencel", "TexFerre", "TexSanta", "Uco", "Fabricato", "Alpargat"]
-
- beginrecording
- repeat with a = 1 to count (mylist)
- go start + (a * 10)
- set the frameLabel = getat(mylist,a)
- updateframe
- end repeat
- endrecording
- end
-
-
-
- on GimmeImagePlacerListThingy
- set MyProp = [:]
- set the itemdelimiter = "\"
- repeat with a = 1 to 1000
- go to frame a
- if the framelabel <> 0 then
- if the membernum of sprite 22 <>0 then
- set Temp1 = the filename of member (the membernum of sprite 22)
- set Temp2 = the rect of sprite 22
- delete item 1 to 2 of Temp1
- set infolist = [temp1,temp2]
- addprop(MyProp, the frame, infolist)
- end if
- end if
- end repeat
- put MyProp
- end
-
-
-
-
- --in the message window type "put changelink("bmp", "pct")"
-
-
- on changelink oldsuffix, newsuffix
- set tempdelimiter = the itemdelimiter
- set the itemdelimiter to "."
- repeat with i = 1 to the number of members
- if the filename of member i contains oldsuffix then
- --put i
- --put "the old filename = "&(the filename of member i)
- set tempname = the filename of member i
- set tempname = item 1 of tempname&"."&newsuffix
- --put "tempname = "&tempname
- set the filename of member i to tempname
- --put "the new filename = "&(the filename of member i)
- end if
- end repeat
- set the itemdelimiter to tempdelimiter
- putfilenames
- return "fuck you asshole"
- end changelink
-
- on putfilenames
- repeat with i = 1 to the number of members
- put "member"&i&"= "&the filename of member i
- end repeat
- end putfilenames